home *** CD-ROM | disk | FTP | other *** search
/ Hottest 6 / Hottest 6 (1996)(PDSoft)[!].iso / software / fredfish / 1100.lha / Programs / Mirror / auto.ged next >
Text File  |  1995-01-31  |  2KB  |  46 lines

  1. /* $VER: 1.0 Dock AutoConfig macro */
  2.  
  3. OPTIONS RESULTS                             /* enable return codes     */
  4.  
  5. if (LEFT(ADDRESS(), 6) ~= "GOLDED") then    /* not started by GoldEd ? */
  6.     address 'GOLDED.1'
  7.  
  8. 'LOCK CURRENT'                              /* lock GUI, gain access   */
  9. OPTIONS FAILAT 6                            /* ignore warnings         */
  10. SIGNAL ON SYNTAX                            /* ensure clean exit       */
  11.  
  12. /* ------------------------ INSERT YOUR CODE HERE: ------------------- */
  13.  
  14. 'REQUEST BODY="A new API client has been installed.|Do you want to have this client added|to the list of active clients ?" BUTTON="_START NEW CLIENT|no"'
  15.  
  16. if (RESULT = 1) then do
  17.  
  18.     'REQUEST HIDE=FALSE BODY="Do you want to have online bracket-highlighting during|user input ?" BUTTON="HIGHLIGHT|no online checks"'
  19.  
  20.     if (RESULT = 1) then
  21.         'API ADD="GOLDED:API/Mirror/Mirror ONLINE"'
  22.     else
  23.         'API ADD="GOLDED:API/Mirror/Mirror OFFLINE"'
  24.  
  25.     'REQUEST BODY="Do you want to have online bracket-highlighting while|moving the cursor ?" BUTTON="HIGHLIGHT|no online checks"'
  26.  
  27.     if (RESULT = 1) then
  28.         'BIND OVERLAY CONFIG="GOLDED:api/mirror/presets/mirror.key"'
  29.  
  30.     'REQUEST HIDE=FALSE BODY="GoldED''s preferences have been changed.|Save new configuration ?" BUTTON="_SAVE|no"'
  31.  
  32.     if (RESULT = 1) then
  33.         'PREFS SAVE'
  34. end
  35.  
  36. /* ---------------------------- END OF YOUR CODE --------------------- */
  37.  
  38. 'UNLOCK' /* VERY important: unlock GUI */
  39. EXIT
  40.  
  41. SYNTAX:
  42.  
  43. SAY "Sorry, error line" SIGL ":" ERRORTEXT(RC) ":-("
  44. 'UNLOCK'
  45. EXIT
  46.